home *** CD-ROM | disk | FTP | other *** search
-
- /* Extraido del fichero GB-FBB.DOC que acompaƱa al FBBBBS 5.14 */
-
- #define NBBBS 80
- #define NBMASK NBBBS/8
-
- typedef struct {
-
- char type ; /* 1 Type of message (A,B,P,T) */
- char status ; /* 1 Status of message ($,A,F,K,N,Y) */
- long numero ; /* 4 Number of the message */
- long taille ; /* 4 Size of message in characters */
- long date ; /* 4 Date of message */
- char bbsf[7] ; /* 7 Adjacent BBS giving the message */
- char bbsv[41] ; /* 41 Route */
- char exped[7] ; /* 7 Destination of the message */
- char desti[7] ; /* 7 To field */
- char bid[13] ; /* 13 BID or MID */
- char titre[81] ; /* 81 Title of message */
- long datech ; /* 4 Date of last status change */
- char fbbs[NBMASK] ; /* 10 Mask of BBSes to forward to */
- char forw[NBMASK] ; /* 10 Mask of BBSes already forwarded */
-
- } bullist ; /* 194 bytes = length of one record */
-
-
-
-
-